home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 33
/
Volume 33 - JOGO DISK .iso
/
Games
/
pin_ball_deluxe.swf
/
scripts
/
frame_4
/
DoAction.as
< prev
Wrap
Text File
|
2007-01-15
|
456b
|
22 lines
function seconds_time()
{
if(_root.numeral < 10)
{
_root.numeral += 1;
_root.countSecond -= 1;
}
if(_root.numeral == 10 && _root.countSecond == 0)
{
clearInterval(intervalID);
_root.anca1._x -= 60;
_root.anca2._x += 60;
_root.numeral = 0;
}
}
function barrierRamp(countSecond)
{
clearInterval(intervalID);
_root.numeral = 0;
intervalID = setInterval(seconds_time,1000);
}